home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / AECUR100.ARJ / CURSTYPE.C < prev    next >
C/C++ Source or Header  |  1990-03-09  |  459b  |  27 lines

  1. /*----------------------------------------------------------------------
  2.  * 
  3.  *  curstype.c
  4.  *
  5.  *  copyright (c) 1987,88,89,90 J. Alan Eldridge
  6.  *
  7.  *  cursor types for IBM PCs etc.
  8.  *
  9.  *----------------------------------------------------------------------
  10.  */
  11.  
  12. #include "curses.h"
  13.  
  14. void
  15. blkcursor()
  16. {
  17.     sizecursor(0, iscolor() ? 7 : 13);
  18. }
  19.  
  20. void
  21. undcursor()
  22. {
  23.     register int l = iscolor() ? 7 : 13;
  24.  
  25.     sizecursor(l - 1, l);
  26. }
  27.